1.1.6.7. security.insecureAPI.gets (C)
Warn on uses of the 'gets' function.

Examples:

void test() {
  char buff[1024];
  gets(buff); // warn
}